home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / MAJOR / Process / enrich-tonality < prev    next >
Encoding:
Text File  |  1998-10-23  |  2.2 KB  |  55 lines  |  [TEXT/ScoM]

  1. enrich-tonality interval-list tonalities
  2.  
  3. Enriches the tonalities by adding new intervals to the tonality base note. If you have a chord tonality you can this way enhance it to include 6th, 9ths, 11th etc. 
  4.  
  5. Enriching adds new notes at the end of the tonality list, and adds only those notes that are new (not already in use in the tonality). If you have a scale '(a b c d e f g h i j k l) then enriched tonality will sound exactly as before but when symbols exceed the original tonality new notes will be heard,  which are the enriched ones.
  6.  
  7. (activate-tonality (major c 4))
  8. --> ((c 4 d 4 e 4 f 4 g 4 a 4 b 4))
  9.  
  10. (enrich-tonality nil (activate-tonality (major c 4)))
  11. --> ((c 4 d 4 e 4 f 4 g 4 a 4 b 4))
  12.  
  13. (enrich-tonality '(1 2 3) (activate-tonality (major c 4)))
  14. --> ((c 4 d 4 e 4 f 4 g 4 a 4 b 4 c# 4 d# 4))
  15.  
  16. (enrich-tonality '(1 2 3) (activate-tonality (major c 4) (harmonic-minor c 4)))
  17. --> ((c 4 d 4 e 4 f 4 g 4 a 4 b 4 c# 4 d# 4) (c 4 d 4 d# 4 f 4 g 4 g# 4 b 4 c# 4))
  18.  
  19. (enrich-tonality '((1 2 3) (4 5 6)) 
  20.                  (activate-tonality (major c 4) (harmonic-minor c 4)))
  21. --> ((c 4 d 4 e 4 f 4 g 4 a 4 b 4 c# 4 d# 4) (c 4 d 4 d# 4 f 4 g 4 g# 4 b 4 e 4 f# 4))
  22.  
  23. Note that enriching is a pattern, which is repeated to all tonalities. 
  24.  
  25. (enrich-tonality '((1 2 3) (4 5 6)) 
  26.                  (activate-tonality (major c 4) 
  27.                                     (harmonic-minor c 4) 
  28.                                     (messiaen2 c 4)))
  29. --> ((c 4 d 4 e 4 f 4 g 4 a 4 b 4 c# 4 d# 4) (c 4 d 4 d# 4 f 4 g 4 g# 4 b 4 e 4 f# 4) (c 4 c# 4 d# 4 e 4 f# 4 g 4 a 4 a# 4 d 4))
  30.  
  31. Use nil not to enrich.
  32.  
  33. (enrich-tonality '((1 2 3) (4 5 6) nil) 
  34.                  (activate-tonality (major c 4) 
  35.                                     (harmonic-minor c 4) 
  36.                                     (messiaen2 c 4)))
  37.  
  38. Use sort-tonality to restore the tonality into an increasing order.
  39.  
  40. (sort-tonality 
  41.  (enrich-tonality '(1 2 3) 
  42.                   (activate-tonality (major c 4) 
  43.                                      (harmonic-minor c 4))))
  44.  
  45. Or howabout
  46.  
  47. (sort-tonality
  48.  (fold-tonality 
  49.   'a 2 (enrich-tonality 
  50.         '(1)
  51.         (symbols-to-tonality
  52.          symbols '(a c a c a -b)
  53.          transpose '((0 3 5))
  54.          mapping (activate-tonality (blues2 c 3))))))
  55.